home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / WINPROGS / WYSIH.ZIP / HMTOHLP.BAT < prev    next >
DOS Batch File  |  1993-09-06  |  1KB  |  26 lines

  1. @echo off
  2. rem This file is used by the WYSI-Help (R) Help editor
  3. rem to convert an .RTF (Rich text format) file to Windows 3
  4. rem help format. The help compiler should be either in the same directory
  5. rem as the .RTF file or in the dos PATH statement, or you can edit
  6. rem this bat file to reflect the path, and, if necessary, the name of the help
  7. rem compiler of future versions of Windows
  8. echo ──────────────────────────────────────────────────────────────────────────
  9. echo           Conversion of %1.RTF
  10. echo           to            %1.HLP
  11. echo ──────────────────────────────────────────────────────────────────────────
  12. echo.
  13. rem change the line after  this one in case the command does not match
  14. HC31.EXE %1
  15. rem change the line before this one in case the command does not match
  16. echo.
  17. echo 
  18. echo.
  19. echo ──────────────────────────────────────────────────────────────────────────
  20. echo                          Conversion terminated
  21. echo.
  22. echo                         Press any key to continue...
  23. echo ──────────────────────────────────────────────────────────────────────────
  24. pause >NUL
  25. exit
  26.